home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 April: Mac OS SDK / Dev.CD Apr 96 SDK / Dev.CD Apr 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc Development Framework / DU Folder / Sample2 / Sources / Other / SampleStrs.fr < prev   
Encoding:
Text File  |  1995-10-09  |  1.3 KB  |  44 lines  |  [TEXT/MPS ]

  1. //    File:        SampleStrs.fr
  2. //
  3. //    Contains:    Common (Platform independent) resources for Sample part
  4. //
  5. //    Copyright:    © 1995 by Apple Computer, Inc., all rights reserved.
  6.  
  7. #ifndef FWRESFIL_K
  8. #include "FWResFil.k"        // [HLX]
  9. #endif
  10.  
  11. #ifndef SAMPLEDEF_H
  12. #include "SampleDef.h"
  13. #endif
  14.  
  15. //----------------------------------------------------------------------------
  16. //    Strings for Sample Menu
  17. //----------------------------------------------------------------------------
  18. // resource MULTISTRING (kSampleStringsResID) [HLX]
  19. resource FW_kMULTISTRING (kSampleStringsResID)
  20. {
  21.     // Sample menu
  22.     kSampleMenuString,     "SampleMenu";
  23.     // menu items
  24.     kGreetingItemString,    "Greetings";
  25.     kGoodbyeItemString,        "Goodbye";
  26.     kTestItemString,        "Test Command";
  27.     // drawn by frame
  28.     kGreetingString,        "Greetings, ";
  29.     kGoodbyeString,            "Goodbye, ";
  30.     kMacString,                "Macintosh®";
  31.     kWinString,                "Windows";
  32. }
  33.  
  34. //----------------------------------------------------------------------------
  35. //    Strings for About box
  36. //----------------------------------------------------------------------------
  37. // resource MULTISTRING (kAboutBoxStringsResID) [HLX]
  38. resource FW_kMULTISTRING (kAboutBoxStringsResID)
  39. {
  40.     kAboutMenuString,    "About Sample...";
  41.     kSamplePartString,    "Sample Part";
  42.     kCreditString,        "Simple Sample Part";
  43. }
  44.